/* * Author: Chris Seguin * * This software has been developed under the copyleft * rules of the GNU General Public License. Please * consult the GNU General Public License for more * details about use and distribution of this software. */ package org.acm.seguin.uml.loader; /** * An interface to reload a web page * *@author Chris Seguin */ public interface Reloader { /** * Reloads the current web page */ public void reload(); }